feat(Geometry/Euclidean/Angle): add the Alternate segment theorem#41121
Open
Scarlett-le wants to merge 2 commits into
Open
feat(Geometry/Euclidean/Angle): add the Alternate segment theorem#41121Scarlett-le wants to merge 2 commits into
Scarlett-le wants to merge 2 commits into
Conversation
PR summary 5d8e57a95dImport changes for modified filesNo significant changes to the import graph Import changes for all files
|
mathlib-bors Bot
pushed a commit
that referenced
this pull request
Jul 1, 2026
…41143) Adds three lemmas to `Mathlib/Geometry/Euclidean/Sphere/Basic.lean`. - `Sphere.ne_center_of_mem_of_mem_of_ne`: a point of a sphere that differs from another point of the sphere is not its center. Extracted at a reviewer's suggestion; this fact was reproved inline four times across #41121 and #41123. - `norm_vsub_center_eq_radius`: for a point `p` on a sphere `s`, `‖p -ᵥ s.center‖ = s.radius`. This pattern occurs ten times in #34164 and four more times in the present file (twice in `inner_vsub_center_vsub_pos` and twice in `Sphere.dist_center_lt_radius_of_sbtw`); those four in-file occurrences are golfed to use it here. - `Sphere.center_mem_affineSpan_pair_iff_isDiameter`: for two distinct points of a sphere, the center lies on the line through them if and only if those points are the endpoints of a diameter. No mathematical content changes; the existing proofs are only shortened. Co-authored-by: Scarlett-le <735979178@qq.com> Co-authored-by: Jireh Loreaux <loreaujy@gmail.com>
|
This PR/issue depends on: |
|
This pull request has conflicts, please merge |
Scarlett-le
force-pushed
the
tangent-chord-angle
branch
from
July 2, 2026 03:01
4c35f5c to
5d8e57a
Compare
joelriou
pushed a commit
to joelriou/mathlib4
that referenced
this pull request
Jul 4, 2026
…eanprover-community#41143) Adds three lemmas to `Mathlib/Geometry/Euclidean/Sphere/Basic.lean`. - `Sphere.ne_center_of_mem_of_mem_of_ne`: a point of a sphere that differs from another point of the sphere is not its center. Extracted at a reviewer's suggestion; this fact was reproved inline four times across leanprover-community#41121 and leanprover-community#41123. - `norm_vsub_center_eq_radius`: for a point `p` on a sphere `s`, `‖p -ᵥ s.center‖ = s.radius`. This pattern occurs ten times in leanprover-community#34164 and four more times in the present file (twice in `inner_vsub_center_vsub_pos` and twice in `Sphere.dist_center_lt_radius_of_sbtw`); those four in-file occurrences are golfed to use it here. - `Sphere.center_mem_affineSpan_pair_iff_isDiameter`: for two distinct points of a sphere, the center lies on the line through them if and only if those points are the endpoints of a diameter. No mathematical content changes; the existing proofs are only shortened. Co-authored-by: Scarlett-le <735979178@qq.com> Co-authored-by: Jireh Loreaux <loreaujy@gmail.com>
michaellee94
pushed a commit
to michaellee94/mathlib4
that referenced
this pull request
Jul 11, 2026
…eanprover-community#41143) Adds three lemmas to `Mathlib/Geometry/Euclidean/Sphere/Basic.lean`. - `Sphere.ne_center_of_mem_of_mem_of_ne`: a point of a sphere that differs from another point of the sphere is not its center. Extracted at a reviewer's suggestion; this fact was reproved inline four times across leanprover-community#41121 and leanprover-community#41123. - `norm_vsub_center_eq_radius`: for a point `p` on a sphere `s`, `‖p -ᵥ s.center‖ = s.radius`. This pattern occurs ten times in leanprover-community#34164 and four more times in the present file (twice in `inner_vsub_center_vsub_pos` and twice in `Sphere.dist_center_lt_radius_of_sbtw`); those four in-file occurrences are golfed to use it here. - `Sphere.center_mem_affineSpan_pair_iff_isDiameter`: for two distinct points of a sphere, the center lies on the line through them if and only if those points are the endpoints of a diameter. No mathematical content changes; the existing proofs are only shortened. Co-authored-by: Scarlett-le <735979178@qq.com> Co-authored-by: Jireh Loreaux <loreaujy@gmail.com>
Contributor
|
maintainer merge |
|
🚀 Pull request has been placed on the maintainer queue by jsm28. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds the Alternate segment theorem to
Mathlib/Geometry/Euclidean/Angle/Sphere.lean:if a line is tangent to a sphere
satp₁and
p₁,p₂,p₃lie ons, then twice the oriented angle from the tangent to the chordp₁p₂equals twice the inscribed angle subtendingp₁p₂atp₃. As elsewhere in this file,the angles are doubled because the underlying oriented angles agree only mod
π.Dependencies